home *** CD-ROM | disk | FTP | other *** search
- @ECHO OFF
- CLS
- ECHO.
- ECHO You are preparing to INSTALL Floppy Format Version 1.2
- ECHO.
- ECHO This BATCH file will _NOT_ change your AUTOEXEC.BAT or CONFIG.SYS
- ECHO.
- ECHO.
- ECHO First answer a couple questions.
- ECHO.
- ECHO The FLOPPY FORMAT program is configured to run
- ECHO from your C:\DOS directory.
- ECHO.
- RR F C:\DOS
- if errorlevel 15 ECHO C: Drive was not found!
- if errorlevel 3 ECHO C:\DOS was not found!
- if errorlevel 0 ECHO C:\DOS does EXIST!
- ECHO.
- ECHO This INSTALL procedure will copy all the necessary
- ECHO files to this DIRectory.
- ECHO.
- RR N "(Select N to Quit or Y to install )" YN
- if "%GET%"=="Y" goto INSTALL
- if "%GET%"=="N" goto QUIT
- :INSTALL
- ECHO.
- ECHO Do You Have a COLOR Monitor ?
- ECHO.
- set MONITOR=
- RR C " ( Select C for Color M for Mono )" CM /Vmonitor=
- if errorlevel 126 goto QUIT
- if "%MONITOR%"=="M" copy FLOP.ASC c:\dos\flop.scr
- if "%MONITOR%"=="C" copy FLOP.SCR c:\dos
- copy floppy.bat c:\dos
- copy rr.exe c:\dos
- REM Check if successful!
- if exist C:\DOS\FLOP.SCR ECHO FLOP.SCR copy operation SUCCESSFUL!!
- if not exist C:\DOS\FLOP.SCR ECHO FLOP.SCR copy operation FAILED!!
- if exist C:\DOS\FLOPPY.BAT ECHO FLOPPY.BAT copy operation SUCCESSFUL!!
- if not exist C:\DOS\FLOPPY.BAT ECHO FLOPPY.BAT copy operation FAILED!!
- if exist C:\DOS\RR.EXE ECHO RR.EXE copy operation SUCCESSFUL!!
- if not exist C:\DOS\RR.EXE ECHO copy operation FAILED!!
- :QUIT
- set MONITOR=
- ECHO.
- ECHO. If you see 3 "SUCCESSFUL" messages your Ready to Go!
- ECHO To run the program go to C:
- ECHO and from DOS type in the command FLOPPY
- ECHO.
- pause
- CLS
-